home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_4 / smallmath / install_libs < prev    next >
Text File  |  1993-01-24  |  1KB  |  55 lines

  1. .K ""
  2.  
  3. ; Script to copy the small math libraries into libs:
  4.  
  5. Echo "This script will copy the mathieeesingtrans.library,"
  6. Echo "mathieeedoubbas.library, and mathieeedoubtrans.library from this"
  7. Echo "package into your LIBS: directory. These libraries are intended for"
  8. Echo "use *only* on machines with a 68881 or 68882 math coprocessor or a"
  9. Echo "68040 main processor. They will fail miserably and surely crash your"
  10. Echo "machine if you do not have one of those processors installed."
  11.  
  12. Ask "*NDo you wish to continue?"
  13. If NOT WARN
  14.    Echo "Aborting operation. No action taken."
  15.    Skip Exit
  16. EndIf
  17.  
  18. Echo "*NPlease ensure that you are working with a copy of your Workbench disk,"
  19. Echo "as this procedure will delete the current versions of the above-named"
  20. Echo "libraries from your LIBS: drawer."
  21.  
  22. Ask "*NDo you wish to continue?"
  23. If NOT WARN
  24.    Echo "Aborting operation. No action taken."
  25.    Skip Exit
  26. EndIf
  27.  
  28. Echo "*N"
  29.  
  30. Copy libs/mathieeesingtrans.library LIBS:
  31. If ERROR
  32.    Echo "Error copying mathieeesingtrans.library. Aborting."
  33.    Skip Exit
  34. EndIf
  35. Echo "Mathieeesingtrans.library copied."
  36.  
  37. Copy libs/mathieeedoubbas.library LIBS:
  38. If ERROR
  39.    Echo "Error copying mathieeedoubbas.library. Aborting."
  40.    Skip Exit
  41. EndIf
  42. Echo "Mathieeedoubbas.library copied."
  43.  
  44. Copy libs/mathieeedoubtrans.library LIBS:
  45. If ERROR
  46.    Echo "Error copying mathieeedoubtrans.library. Aborting."
  47.    Skip Exit
  48. EndIf
  49. Echo "Mathieeedoubtrans.library copied."
  50.  
  51. Echo "*NOperation successful. Exiting."
  52.  
  53. Lab Exit
  54. Quit
  55.